func runtime.fastrandn
11 uses
runtime (current package)
malloc.go#L1413: q := fastrandn(1<<randomBitCount) + 1
malloc.go#L1431: return uintptr(fastrandn(uint32(2 * rate)))
mgcpacer.go#L715: id := int32(fastrandn(uint32(gomaxprocs - 1)))
os_linux.go#L675: spec.it_value.setNsec(1 + int64(fastrandn(uint32(1e9/hz))))
proc.go#L6200: if randomizeScheduler && next && fastrandn(2) == 0 {
proc.go#L6253: j := fastrandn(i + 1)
proc.go#L6294: j := fastrandn(i + 1)
select.go#L176: j := fastrandn(uint32(norder + 1))
stubs.go#L151: func fastrandn(n uint32) uint32 {
stubs.go#L200: func sync_fastrandn(n uint32) uint32 { return fastrandn(n) }
symtab.go#L900: ci := fastrandn(uint32(len(cache.entries[x])))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |